Removes the rows at the specified indices from collection of the IZennoTable object.
Syntax
Example
The following code using
IZennoTable Interface for removing rows.
| C# | Copy Code |
|---|
// get table by name "MyTable"
IZennoTable table = project.Tables["MyTable"];
// remove rows
table.DeleteRow(new [] { 0, 1, 5, 7 }); |
| PHP | Copy Code |
|---|
// get table by name "MyTable"
$table = $project->Tables->get_Item("MyTable");
// remove rows
$table->DeleteRow(array(0, 1, 5, 7)); |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven
See Also